home *** CD-ROM | disk | FTP | other *** search
/ Champak 140 / (Vol 140) Sep 19 2011.iso / Games / theLifeArk.swf / scripts / DefineSprite_6 / frame_1 / DoAction.as
Text File  |  2011-09-19  |  783b  |  36 lines

  1. function flash_loading(x, T, A)
  2. {
  3.    var _loc1_ = 3.141592653589793 / T * x;
  4.    return A * Math.sin(_loc1_);
  5. }
  6. _root.stop();
  7. var my_cm = new ContextMenu();
  8. my_cm.hideBuiltInItems();
  9. _root.menu = my_cm;
  10. _X = Stage.width / 2;
  11. _Y = Stage.height / 2 - 30;
  12. mLogo._alpha = 0;
  13. mLoading._alpha = 0;
  14. var sDownload = "";
  15. onEnterFrame = function()
  16. {
  17.    var _loc2_ = int(_root.getBytesLoaded() / _root.getBytesTotal() * 100);
  18.    if(_loc2_ == 100)
  19.    {
  20.       if(_root._mochiad instanceof MovieClip != true)
  21.       {
  22.          _root.play();
  23.       }
  24.    }
  25.    if(mLogo._alpha < 100)
  26.    {
  27.       mLogo._alpha += 5;
  28.    }
  29.    else
  30.    {
  31.       mLogo._alpha = 100;
  32.       sDownload = _loc2_ + " %";
  33.       mLoading._alpha = Math.abs(flash_loading(getTimer(),800,100));
  34.    }
  35. };
  36.